home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
distri~1
/
updates
/
incobj30.zoo
/
level30.zoo
/
usr
/
include
/
sys
/
dir.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-03-28
|
421 b
|
19 lines
/*
* kludge city: fake out BSD'ish compatible dir routines with
* our Posix comaptible portable dir stuff
*/
#ifndef _SYS_DIR_H
#define _SYS_DIR_H
#ifdef _DIRENT_H
# error "<sys/dir.h>: You cannot use both <dirent.h> and <sys/dir.h>. \n\
<sys/dir.h> is provided for BSD compatibility\n"
#endif
/* note that the presence of _SYS_DIR_H causes dirent.h to
* behave differently
*/
#include <dirent.h>
#endif